ValueFilterCondition`1 Model

A value filter condition FilterCOndition for matching against any item from a list of values

Nullable
ListCondition : object []

Condition is satisfied if a value matches ANY item in this list. (Incompatible with Value)

Nullable
Value : object

Condition is satisfied if a value matches this Value exactly (Incompatible with ListCondition) - This is equivalent to ListCondition = new T[] { Value }

NegateCondition : bool

boolean inverts conditions used by this instance

Nullable
FilterID : number (int)

The unique (per query) ID for this filter. Will be set automatically by the server, no need to set it. Duplicating this value will
likely result in query failures

Example
{
  "ListCondition": [],
  "Value": {},
  "NegateCondition": true,
  "FilterID": 321
}